bitmask: Trivial formatting fix
authorMatthias Clasen <mclasen@redhat.com>
Fri, 11 Sep 2015 13:06:46 +0000 (09:06 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Sat, 12 Sep 2015 15:24:37 +0000 (11:24 -0400)
gtk/gtkallocatedbitmask.c

index 0950d4362dec64489cf406a2596b113a3db1e723..f95e312ae914e54cc6b739014147b6070df01e8d 100644 (file)
@@ -313,7 +313,7 @@ _gtk_allocated_bitmask_invert_range (GtkBitmask *mask,
     mask->data[i] ^= ALL_BITS;
   mask->data[start_word] ^= (((VALUE_TYPE) 1) << start_bit) - 1;
   if (end_bit != 63)
-  mask->data[end_word] ^= ALL_BITS << (end_bit + 1);
+    mask->data[end_word] ^= ALL_BITS << (end_bit + 1);
 
   return gtk_allocated_bitmask_shrink (mask);
 }